home *** CD-ROM | disk | FTP | other *** search
- stop();
- _root.level = 6;
- _root.stopAllSounds();
- _root.music.stop();
- music = new Sound();
- music.attachSound("level6");
- music.start();
- music.onSoundComplete = function()
- {
- music.start();
- };
- missileNum = 0;
- bNum = 0;
- _root.health = 100;
- _root.magic = 100;
- pauseMC.removeMovieClip();
- _root.createEmptyMovieClip("pauseMC",0);
- pview._visible = false;
- pauseMC.onEnterFrame = function()
- {
- if(Key.isDown(80))
- {
- if(pausePress == false)
- {
- if(_root.pauseMode == false)
- {
- _root.pauseMode = true;
- }
- else
- {
- _root.pauseMode = false;
- }
- pausePress = true;
- }
- }
- else
- {
- pausePress = false;
- }
- if(_root.pauseMode == true)
- {
- pview._visible = true;
- _root.music.setVolume(40);
- }
- else
- {
- pview._visible = false;
- _root.music.setVolume(100);
- }
- };
-